.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.wh-full {
  width: 100%;
  height: 100%;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.cover-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.text_over {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hidden {
  width: 0 !important;
  height: 0 !important;
  transform: scale(0);
  opacity: 0;
}
